home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
iconal2a
/
helpform.frm
< prev
next >
Wrap
Text File
|
1999-10-12
|
2KB
|
82 lines
VERSION 5.00
Begin VB.Form HelpForm
BackColor = &H8000000A&
BorderStyle = 4 'Fixed ToolWindow
Caption = "Helpfile"
ClientHeight = 6915
ClientLeft = 45
ClientTop = 285
ClientWidth = 8010
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6915
ScaleWidth = 8010
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.TextBox Text1
BackColor = &H00C0C0C0&
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800080&
Height = 6540
Left = 45
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "HelpForm.frx":0000
Top = 360
Width = 7935
End
Begin VB.PictureBox Picture1
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Height = 240
Left = 6660
ScaleHeight = 240
ScaleWidth = 330
TabIndex = 1
Top = 45
Width = 330
End
Begin VB.Label Label1
Caption = "IconAlbumDeluxe"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 285
Left = 90
TabIndex = 2
Top = 45
Width = 3210
End
End
Attribute VB_Name = "HelpForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Open IBpath + "\helpfile.txt" For Input As #1
HelpForm.Text1.Text = Input(LOF(1), 1)
Close #1
End Sub
Private Sub Text1_GotFocus()
Picture1.SetFocus
End Sub